# .bashrc

# User specific aliases and functions

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi
if [ -f $HOME/.mysshrc ]
then
	X=`ps --noheaders -p $PPID | grep sshd 2>/dev/null`
	if [ $? -eq 0 ]
	then
	    . $HOME/.mysshrc
	fi
fi
